home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2012 February / maximum-cd-2012-02.iso / DiscContents / TheWagerSetup1.2.exe / Assets / Scripts / [48].lua < prev    next >
Encoding:
Text File  |  2011-11-07  |  928 b   |  25 lines

  1. -- Script [48]
  2. Starting = 0;
  3. SeaEvent = 1;
  4. SetEventTitle("Cannibalism!");
  5.  
  6. SetBoolFlag(2, True);
  7.  
  8. SetStartingEvent(ScriptID, false);
  9.  
  10. CrewID = math.random(0, CrewCount);
  11.   
  12. CrewName = GetCrewName(CrewID);
  13.  
  14. KillCrew(CrewID);
  15.  
  16. ShowStoryText("Your Captain's Intuition refuses to let you sleep this evening and it is soon proved correct by a scream coming from the bow.");
  17.  
  18. ShowStoryText("Rushing there from your cabin you find the Tribesman you gained as part of your island cultural exchange program bent over the remains of poor " .. CrewName .. ", smacking his lips as he strips flesh from bone. Cannibal!");
  19.  
  20. ShowStoryText("The Crew gather, tempers are inflamed, and cutlasses are drawn. Your crew turn to you. Justice needs to be served here.");
  21.  
  22. AddChoice("Bring the savage to justice yourself", "[49]");
  23. AddChoice("Argue his case, such as it is", "[50]");
  24. AddChoice("Return to your cabin.", "[51]");
  25.